home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / domino_xss2.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  64 lines

  1. #
  2. # This script is (C) Tenable Network Security 
  3. #
  4.  
  5.  
  6. if(description)
  7. {
  8.  script_id(15514);
  9.  script_bugtraq_id(11458);
  10.  script_version ("$Revision: 1.1 $");
  11.  
  12.  
  13.  name["english"] = "Lotus Domino XSS (2)";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote server is vulnerable to cross-site scripting,
  18. when requesting a .nsf file with html arguments, as in :
  19.  
  20. GET /FormReflectingURLValue?OpenForm&Field=[XSS]
  21.  
  22.  
  23. Solution : None at this time
  24. Risk factor : Medium";
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Checks for Lotus Domino XSS";
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  36.  family["english"] = "CGI abuses";
  37.  family["francais"] = "Abus de CGI";
  38.  script_family(english:family["english"], francais:family["francais"]);
  39.  
  40.  script_dependencie("cross_site_scripting.nasl");
  41.  script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48. include("http_func.inc");
  49. include("http_keepalive.inc");
  50.  
  51. port = get_http_port(default:80);
  52.  
  53. if(!get_port_state(port))exit(0);
  54. banner = get_http_banner(port:port);
  55. if ( ! banner ) exit(0);
  56. if ( "Lotus Domino" >!< banner ) exit(0);
  57. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  58.  
  59.     
  60. req = http_get(item:"/FormReflectingURLValue?OpenForm&Field=%5b%3cscript%3efoo%3cscript%3e%5d", port:port);
  61. res = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  62. if ( res == NULL ) exit (0);
  63. if ( "<script>foo</script>" >< res ) security_warning(port);
  64.